home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Educational / PrimeThreads / Source / PrimeThreadsApp.h < prev    next >
Text File  |  1995-06-12  |  377b  |  18 lines

  1. /*********************/
  2. /* PrimeThreadsApp.h */
  3. /*********************/
  4. #import <appkit/Application.h>
  5. #import <cthreads.h>
  6. @interface PrimeThreadsApp:Application
  7. {
  8.     id    numPrimesField;
  9.     id    highestPrimeField;
  10.     cthread_t primeFinderThread;
  11. }
  12. - setNumPrimesField:anObject;
  13. - setHighestPrimeField:anObject;
  14. - appDidInit:sender;
  15. - toggleGoStop:sender;
  16. - updateFields;
  17. @end
  18.